Completed
Pull Request — develop (#110)
by Xaver
01:10
created

module.exports   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
nc 1
dl 0
loc 8
rs 9.4285
nop 2

1 Function

Rating   Name   Duplication   Size   Complexity  
A 0 6 1
1
module.exports = function (gulp, plugins) {
2
  return function sasslint() {
3
    return gulp.src('scss/*.scss')
4
      .pipe(plugins.sassLint())
5
      .pipe(plugins.sassLint.format())
6
      .pipe(plugins.sassLint.failOnError());
7
  };
8
};
9